-
Notifications
You must be signed in to change notification settings - Fork 806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor controller unit test with proper mock #268
Conversation
Switch to Alpine 3.8 as base image
Update README for driver features
Rename e2e test to be integ test
Add support for creating encrypted volume
Remove unit test and sanity test in favor of prow job
Update copyright years
Remove setting `releaseFunc` when device is already assigned since the same func is set in`newBlockDevice`
Switch to use dockerhub repo amazon/aws-ebs-csi-driver
Refactor `GetDevice` method.
Swtich to use amazon linux 2 as base image
Switch to use golang1.11.1-stretch as build image so that we can delegate to make file for binary compilation without duplicating the logic in both makefile and dockerfile.
Switch to use go 1.11.1 for travis
Update driver version to 0.1.0-alpha
Use session.Must to enforce a valid session is created
Fix misspelling
Fixes: #83
Add golint verification
Upgrade CSI spec to 1.1.0
Bump driver version
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: zacharya If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Hi @zacharya. Thanks for your PR. I'm waiting for a kubernetes-sigs or kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Pull Request Test Coverage Report for Build 577
💛 - Coveralls |
…ency-openshift-4.17-ose-aws-ebs-csi-driver OCPBUGS-34232: Updating ose-aws-ebs-csi-driver-container image to be consistent with ART for 4.17
Is this a bug fix or adding new feature?
Refactor Cloud interface unit tests to use GoMock
What is this PR about? / Why do we need it?
cloud.FakeCloudProvider
tosanity.fakeCloudProvider
required exportingcloud.metadata
due to the dependency. I don't see any issues with this, but I figured I'd bring it up in case some of the maintainers see problems.What testing is done?
Both
make test
andmake test-sanity
are running fine.